home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / quicktime / effects / dimmer2effect / readme < prev   
Encoding:
Text File  |  2000-06-23  |  1.8 KB  |  38 lines

  1. README - Dimmer2Effect
  2.  
  3. This sample code package shows how to define a custom effect for QuickTime 3 or later.
  4.  
  5. This effect uses two sources as input, and renders that source with
  6. a dim value that starts at full on, and ramps to full off.  This isn't very
  7. useful as a real effect, but shows instead how to create an effect.
  8.  
  9. ALSO PLEASE NOTE THAT THE LINK WARNING ABOUT THE COMPONENT DISPATCH ENTRY POINT
  10. NOT BEING A ROUTINE DESCRIPTOR IS NORMAL AND CAN BE IGNORED!
  11.  
  12. The files in this project are as follows:
  13.  Effect.c -- effect source (you change this)
  14.  Effect.r -- effect resources (you change this)
  15.  EffectDefinitions.h -- effect resource IDs (you probably change this)
  16.  EffectUtilities.c -- effect tween utilities (does not usually require change)
  17.  EffectUtilities.h -- effect tween utilities (does not usually require change)
  18.  EffectDispatch.h -- effect codec entry point definitions (does not usually require change)
  19.  Dimmer2Effect-PPC.ยต -- Metrowerks project for the effect
  20.  EffectFilter16.c - the 16-bit effect algorithm (you change this)
  21.  EffectFilter32.c - the 32-bit effect algorithm (you change this)
  22.  
  23. The access paths are arranged to reference the includes (CIncludes, RIncludes) of the
  24. QTDevMac folder. The example's folder should be placed in the MacSampleCode folder which
  25. is a sibling folder of the QTDevMac folder. The relative paths depend upon this.
  26.  
  27.  
  28. NOTE ON FILE TYPES:
  29.  
  30. This sample code creates a file of type 'thng', which is appropriate for final installation
  31. of the built component in the System folder. During development, you might want to set the
  32. file type to 'THNG', so that you can double-click on the component to register it using
  33. the Reinstaller utility. (This avoids having to move the component into the System folder
  34. and restart your computer.) Just be sure to reset the file type to 'thng' before shipping
  35. your effect!
  36.  
  37. Enjoy,
  38. QuickTime Team